diff --git a/snowpack.config.mjs b/snowpack.config.mjs index f92da73..d508721 100644 --- a/snowpack.config.mjs +++ b/snowpack.config.mjs @@ -1,20 +1,10 @@ -import pkg from './package.json'; - /** @type {import("snowpack").SnowpackUserConfig } */ export default { mount: { - // public: {url: '/', static: true}, + public: {url: '/', static: true}, frontend: {url: '/dist'}, }, - plugins: [ - '@snowpack/plugin-vue', - '@snowpack/plugin-dotenv', - ['snowpack-plugin-cdn-import', { - dependencies: pkg.dependencies, - enableInDevMode: true, - // baseUrl: 'https://unpkg.com', - }] - ], + plugins: ['@snowpack/plugin-vue', '@snowpack/plugin-dotenv'], routes: [ /* Enable an SPA Fallback in development: */ // {"match": "routes", "src": ".*", "dest": "/index.html"},