2020-08-04 12:59:41 +00:00
|
|
|
module.exports = {
|
2020-09-01 20:17:48 +00:00
|
|
|
extends: "@snowpack/app-scripts-react",
|
|
|
|
proxy: {
|
2021-03-18 12:48:14 +00:00
|
|
|
"/auth/admin": "http://localhost:8180/auth/admin/",
|
2020-08-04 12:59:41 +00:00
|
|
|
},
|
2021-07-14 10:43:21 +00:00
|
|
|
plugins: ["@snowpack/plugin-postcss", "@snowpack/plugin-typescript"],
|
2021-03-18 12:48:14 +00:00
|
|
|
buildOptions: {
|
|
|
|
baseUrl: "/adminv2",
|
|
|
|
clean: true,
|
|
|
|
},
|
2020-09-01 20:17:48 +00:00
|
|
|
};
|