From 9f8ccf95f19d008e776c88d7fa333ad30e816b6b Mon Sep 17 00:00:00 2001
From: Edward Betts <edward@4angle.com>
Date: Sat, 13 May 2023 15:25:52 +0200
Subject: [PATCH] Update

---
 snowpack.config.mjs | 14 ++------------
 1 file changed, 2 insertions(+), 12 deletions(-)

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"},