You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
555 B

module.exports = {
// css: {
// loaderOptions: {
// sass: {
// prependData: `
// @import "@/global-styles/designs-ystem.scss";
// `
// }
// }
// }
devServer: {
allowedHosts: [
'umbrel-dev.local',
]
},
chainWebpack: config => {
config.plugin("html").tap(args => {
args[0].template =
process.env.STAGING_DEPLOYMENT === "true"
? "./public/index-staging.html"
: "./public/index.html";
return args;
});
}
};