mirror of
https://github.com/Nezumi-2711/strapi-cloud-template-blog-acf3cc33ae.git
synced 2026-09-22 13:48:37 +00:00
13 lines
230 B
JavaScript
13 lines
230 B
JavaScript
const { mergeConfig } = require('vite');
|
|
|
|
module.exports = (config) => {
|
|
// Important: always return the modified config
|
|
return mergeConfig(config, {
|
|
resolve: {
|
|
alias: {
|
|
'@': '/src',
|
|
},
|
|
},
|
|
});
|
|
};
|