From 2a76e0621bde5a7048d080f47d5bd5512334931b Mon Sep 17 00:00:00 2001 From: Antonio De Lucreziis Date: Mon, 21 Mar 2022 22:05:11 +0100 Subject: [PATCH] fix: added missing target files in vite.config.js and removed a compilation warning --- client/login.html | 2 +- client/orari.html | 2 +- client/prenota.html | 2 +- client/vite.config.js | 5 ++++- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/client/login.html b/client/login.html index 67ef3e6..4367af2 100644 --- a/client/login.html +++ b/client/login.html @@ -30,6 +30,6 @@ - + diff --git a/client/orari.html b/client/orari.html index 6d2bf27..abcaa28 100644 --- a/client/orari.html +++ b/client/orari.html @@ -173,6 +173,6 @@ - + diff --git a/client/prenota.html b/client/prenota.html index f03e26e..46b1f9c 100644 --- a/client/prenota.html +++ b/client/prenota.html @@ -39,6 +39,6 @@

Prenota

- + diff --git a/client/vite.config.js b/client/vite.config.js index e61501b..6c6d328 100644 --- a/client/vite.config.js +++ b/client/vite.config.js @@ -7,11 +7,14 @@ export default defineConfig(({ mode }) => { return { base: process.env.BASE_URL, + css: { preprocessorOptions: { scss: { charset: false } } }, build: { rollupOptions: { input: { main: resolve(__dirname, 'index.html'), - login: resolve(__dirname, 'login/index.html'), + login: resolve(__dirname, 'login.html'), + orari: resolve(__dirname, 'orari.html'), + prenota: resolve(__dirname, 'prenota.html'), }, }, },