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.

24 lines
548 B

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