# Release 1.0.4

## Changes from 1.0.3

### Bug Fixes

- **Fixed missing tsconfig.node.json in template**: The `create-app.js` script was missing `tsconfig.node.json` from the list of files to copy, causing Vite to fail with `ENOENT` error when running the dev server in newly created projects.
- **Fixed tsconfig.node.json missing from npm package**: Added `tsconfig.node.json` to the `files` array in package.json so it's included when the package is published to npm.

### Diff

```diff
--- a/bin/create-app.js
+++ b/bin/create-app.js
@@ -82,6 +82,7 @@ function main() {
     'vite.config.ts',
     'tsconfig.json',
     'tsconfig.app.json',
+    'tsconfig.node.json',
     'tsconfig.server.json',
     'tailwind.config.ts',
     'postcss.config.js',
```

```diff
--- a/package.json
+++ b/package.json
@@ -17,6 +17,7 @@
     "vite.config.ts",
     "tsconfig.json",
     "tsconfig.app.json",
+    "tsconfig.node.json",
     "tsconfig.server.json",
     "tailwind.config.ts",
```

### Repository

- Updated repository URLs in package.json to reflect the correct GitHub location
