Skip to content

Commit

Permalink
Merge pull request #79 from thetarnav/devtools
Browse files Browse the repository at this point in the history
Add solid-devtools to templates
  • Loading branch information
amoutonbrady authored Jun 17, 2023
2 parents 9e94169 + 34c8209 commit d785e3d
Show file tree
Hide file tree
Showing 41 changed files with 4,352 additions and 1,643 deletions.
2 changes: 1 addition & 1 deletion js-tailwindcss/jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
"noEmit": true,
"isolatedModules": true
}
}
}
1 change: 1 addition & 0 deletions js-tailwindcss/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"devDependencies": {
"autoprefixer": "^10.4.14",
"postcss": "^8.4.24",
"solid-devtools": "^0.27.3",
"tailwindcss": "^3.3.2",
"vite": "^4.3.9",
"vite-plugin-solid": "^2.7.0"
Expand Down
261 changes: 229 additions & 32 deletions js-tailwindcss/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion js-tailwindcss/vite.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
import { defineConfig } from 'vite';
import solidPlugin from 'vite-plugin-solid';
// import devtools from 'solid-devtools/vite';

export default defineConfig({
plugins: [solidPlugin()],
plugins: [
/*
Uncomment the following line to enable solid-devtools.
For more info see https://github.com/thetarnav/solid-devtools/tree/main/packages/extension#readme
*/
// devtools(),
solidPlugin(),
],
server: {
port: 3000,
},
Expand Down
Loading

0 comments on commit d785e3d

Please sign in to comment.