Skip to content

Commit

Permalink
vite 3 example
Browse files Browse the repository at this point in the history
  • Loading branch information
birkskyum committed Nov 18, 2023
1 parent 30f2392 commit 3fa0dd2
Show file tree
Hide file tree
Showing 8 changed files with 541 additions and 0 deletions.
11 changes: 11 additions & 0 deletions examples/vite-3/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div id="app"></div>
<script src="./src/main.tsx" type="module"></script>
</body>
</html>
16 changes: 16 additions & 0 deletions examples/vite-3/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "example",
"private": "true",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build"
},
"devDependencies": {
"vite": "^3.2.7",
"vite-plugin-solid": "link:../.."
},
"dependencies": {
"solid-js": "^1.8.5"
}
}
Loading

0 comments on commit 3fa0dd2

Please sign in to comment.