@cloudflare/vite-plugin 0.1.9 → 0.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/dist/asset-workers/asset-worker.js +1151 -1018
- package/dist/asset-workers/router-worker.js +593 -594
- package/dist/index.js +56 -52
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -140,6 +140,15 @@ The `directory` in the output configuration will automatically point to the clie
|
|
|
140
140
|
> This output file is a snapshot of your configuration at the time of the build and is modified to reference your build artifacts.
|
|
141
141
|
> It is the configuration that is used for preview and deployment.
|
|
142
142
|
|
|
143
|
+
#### Update the .gitignore file
|
|
144
|
+
|
|
145
|
+
Wrangler will use and/or generate temporary files that should not be stored in git. Add the following lines to the `.gitignore` file:
|
|
146
|
+
|
|
147
|
+
```gitignore
|
|
148
|
+
.wrangler
|
|
149
|
+
.dev.vars
|
|
150
|
+
```
|
|
151
|
+
|
|
143
152
|
#### Run the development server
|
|
144
153
|
|
|
145
154
|
Run `npm run dev` to verify that your application is working as expected.
|