-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Yarn -> npm Use nix modules Upgrade vite Add demo for HTML document
- Loading branch information
1 parent
9185b06
commit 5867afc
Showing
8 changed files
with
4,186 additions
and
1,296 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,5 @@ | ||
run="yarn run dev" | ||
run="npm run dev" | ||
|
||
[packager] | ||
language = "nodejs-yarn" | ||
[packager.features] | ||
packageSearch = true | ||
guessImports = true | ||
modules = ["nodejs-18:v3-20230608-f4cd419"] | ||
|
||
[languages.js] | ||
pattern = "**/*.ts" | ||
[languages.js.languageServer] | ||
start = ["typescript-language-server", "--stdio"] | ||
channel = "stable-23_05" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
export default { | ||
import { defineConfig } from 'vite'; | ||
|
||
// https://vitejs.dev/config/ | ||
export default defineConfig({ | ||
plugins: [], | ||
server: { | ||
host: '0.0.0.0', | ||
hmr: { | ||
port: 443, | ||
}, | ||
}, | ||
}; | ||
} | ||
}) |
Oops, something went wrong.