From 9227981d758f97ac2ee5399cbdf1940d1004ff8f Mon Sep 17 00:00:00 2001 From: Taylor Hanayik Date: Tue, 23 Apr 2024 11:45:25 -0400 Subject: [PATCH] fix styles and config --- index.html | 2 +- niivue.css => public/niivue.css | 0 vite.config.js | 8 ++++++++ 3 files changed, 9 insertions(+), 1 deletion(-) rename niivue.css => public/niivue.css (100%) create mode 100644 vite.config.js diff --git a/index.html b/index.html index 1839105..8437b3a 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - + Niivue brain chop diff --git a/niivue.css b/public/niivue.css similarity index 100% rename from niivue.css rename to public/niivue.css diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..e3e49f0 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,8 @@ +import { defineConfig } from 'vite' + +export default defineConfig({ + root: '.', + server: { + open: 'index.html', + }, +}) \ No newline at end of file