# Django Vite
[](https://badge.fury.io/py/django-vite)
Integration of [ViteJS](https://vitejs.dev/) in a Django project.
- [Installation](#installation)
- [Django](#django)
- [ViteJS](#vitejs)
- [Assets](#assets)
- [Usage](#usage)
- [Configuration](#configuration)
- [Dev Mode](#dev-mode)
- [Template tags](#template-tags)
- [Custom attributes](#custom-attributes)
- [Vite Legacy Plugin](#vite-legacy-plugin)
- [Multi-app configuration](#multi-app-configuration)
- [Configuration Variables](#configuration-variables)
- [dev\_mode](#dev_mode)
- [dev\_server\_protocol](#dev_server_protocol)
- [dev\_server\_host](#dev_server_host)
- [dev\_server\_port](#dev_server_port)
- [static\_url\_prefix](#static_url_prefix)
- [manifest\_path](#manifest_path)
- [legacy\_polyfills\_motif](#legacy_polyfills_motif)
- [ws\_client\_url](#ws_client_url)
- [react\_refresh\_url](#react_refresh_url)
- [Notes](#notes)
- [Whitenoise](#whitenoise)
- [Examples](#examples)
- [Thanks](#thanks)
## Installation
### Django
```
pip install django-vite
```
Add `django_vite` to your `INSTALLED_APPS` in your `settings.py`
(before your apps that are using it).
```python
INSTALLED_APPS = [
...
'django_vite',
...
]
```
### ViteJS
Follow instructions on [https://vitejs.dev/guide/](https://vitejs.dev/guide/).
And mostly the SSR part.
Then in your ViteJS config file :
- Set the `base` options the same as your `STATIC_URL` Django setting.
- Set the `build.outDir` path to where you want the assets to compiled.
- Set the `build.manifest` options to `manifest.json`.
- As you are in SSR and not in SPA, you don't have an `index.html` that
ViteJS can use to determine which files to compile. You need to tell it
directly in `build.rollupOptions.input`.
```javascript
export default defineConfig({
...
base: "/static/",
build: {
...
manifest: "manifest.json",
outDir: resolve("./assets"),
rollupOptions: {
input: {
<unique key>: '<path to your asset>'
}
}
}
})
```
### Assets
As recommended on Vite's [backend integration guide](https://vitejs.dev/guide/backend-integration.html), your assets should include the modulepreload polyfill.
```javascript
// Add this at the beginning of your app entry.
import 'vite/modulepreload-polyfill';
```
## Usage
### Configuration
Define a default `DJANGO_VITE` configuration in your `settings.py`.
```python
DJANGO_VITE = {
"default": {
"dev_mode": True
}
}
```
Or if you prefer to use the legacy module-level settings, you can use:
```python
DJANGO_VITE_DEV_MODE = True
```
Be sure that the `build.outDir` from `vite.config.js` is included in `STATICFILES_DIRS`.
```python
STATICFILES_DIRS = [
BASE_DIR / "assets"
]
```
### Dev Mode
The `dev_mode`/`DJANGO_VITE_DEV_MODE` boolean defines if you want to include assets in development mode or production mode.
- In development mode, assets are included as modules using the ViteJS
webserver. This will enable HMR for your assets.
- In production mode, assets are included as standard assets
(no ViteJS webserver and HMR) like default Django static files.
This means that your assets must be compiled with ViteJS before.
- This setting may be set as the same value as your `DEBUG` setting in
Django. But you can do what is good for your needs.
### Template tags
Include this in your base HTML template file.
```
{% load django_vite %}
```
Then in your `<head>` element add this :
```
{% vite_hmr_client %}
```
- This will add a `<script>` tag to include the ViteJS HMR client.
- This tag will include this script only if `DJANGO_VITE_DEV_MODE` is true,
otherwise this will do nothing.
Then add this tag (in your `<head>` element too) to load your scripts :
```
{% vite_asset '<path to your asset>' %}
```
This will add a `<script>` tag including your JS/TS script :
- In development and production, all scripts are included as modules (`[type=module]`).
- You can pass a second argument to this tag to overrides attributes
passed to the script tag.
- This tag only accept JS/TS, for other type of assets, they must be
included in the script itself using `import` statements.
- In production mode, the library will read the `manifest.json` file
generated by ViteJS and import all CSS files dependent of this script
(before importing the script).
- You can add as many of this tag as you want, for each input you specify
in your ViteJS configuration file.
- The path must be relative to your `root` key inside your ViteJS config file.
- The path must be a key inside your manifest file `manifest.json` file
generated by ViteJS.
- In general, this path does not require a `/` at the beginning
(follow your `manifest.json` file).
```
{% vite_asset_url '<path to your asset>' %}
```
This will generate only the URL to an asset with no tag surrounding it.
**Warning, this does not generate URLs for dependant assets of this one
like the previous tag.**
```
{% vite_react_refresh %}
```
If you're using React, this will generate the Javascript `<script/>` needed to support React HMR.
```
{% vite_react_refresh nonce="{{ request.csp_nonce }}" %}
```
Any kwargs passed to vite_react_refresh will be added to its generated `<script/>` tag. For example, if your site is configured with a Content Security Policy using [django-csp](https://github.com/mozilla/django-csp) you'll want to add this value for `nonce`.
### Custom attributes
By default, all script tags are generated with a `type="module"` and `crossorigin=""` attributes just like ViteJS do by default if you are building a single-page app.
You can override this behavior by adding or overriding this attributes like so :
```jinja-html
{% vite_asset '<path to your asset>' foo="bar" hello="world" data_turbo_track="reload" %}
```
This line will add `foo="bar"`, `hello="world"`, and `data-turbo-track="reload"` attributes.
You can also use context variables to fill attributes values :
```
{% vite_asset '<path to your asset>' foo=request.GET.bar %}
```
If you want to overrides default attributes just add them like new attributes :
```
{% vite_asset '<path to your asset>' crossorigin="anonymous" %}
```
Although it's recommended to keep the default `type="module"` attribute as ViteJS build scripts as ES6 modules.
## Vite Legacy Plugin
If you want to consider legacy browsers that don't support ES6 modules loading
you may use [@vitejs/plugin-legacy](https://github.com/vitejs/vite/tree/main/packages/plugin-legacy).
Django Vite supports this plugin. You must add stuff in complement of other script imports in the `<head>` tag.
Just before your `<body>` closing tag add this :
```
{% vite_legacy_polyfills %}
```
This tag will do nothing in development, but in production it will loads the polyfills
generated by ViteJS.
And so next to this tag you need to add another import to all the scripts you have
in the head but the 'legacy' version generated by ViteJS like so :
```
{% vite_legacy_asset '<path to your asset>' %}
```
Like the previous tag, this will do nothing in development but in production,
Django Vite will add a script tag with a `nomodule` attribute for legacy browsers.
The path to your asset must contain de pattern `-legacy` in the file name (ex : `main-legacy.js`).
This tag accepts overriding and adding custom attributes like the default `vite_asset` tag.
## Multi-app configuration
If you would like to use django-vite with multiple vite configurations you can specify them in your settings.
```python
DJANGO_VITE = {
"default": {
"dev_mode": True,
},
"external_app_1": {
...
},
"external_app_2": {
...
}
}
```
Specify the app in each django-tag tag that you use in your templates. If no app is provided, it will default to using the "default" app.
```html
{% vite_asset '<path to your asset>' %}
{% vite_asset '<path to another asset>' app="external_app_1" %}
{% vite_asset '<path to a third asset>' app="external_app_2" %}
```
You can see an example project [here](https://github.com/Niicck/django-vite-multi-app-example).
## Configuration Variables
You can redefine these values for each app config in `DJANGO_VITE` in `settings.py`.
### dev_mode
- **Type**: `bool`
- **Default**: `False`
- **Legacy Key**: `DJANGO_VITE_DEV_MODE`
Indicates whether to serve assets via the ViteJS development server or from compiled production assets.
Read more: [Dev Mode](#dev-mode)
### dev_server_protocol
- **Type**: `str`
- **Default**: `"http"`
- **Legacy Key**: `DJANGO_VITE_DEV_SERVER_PROTOCOL`
The protocol used by the ViteJS webserver.
### dev_server_host
- **Type**: `str`
- **Default**: `"localhost"`
- **Legacy Key**: `DJANGO_VITE_DEV_SERVER_HOST`
The `server.host` in `vite.config.js` for the ViteJS development server.
### dev_server_port
- **Type**: `int`
- **Default**: `5173`
- **Legacy Key**: `DJANGO_VITE_DEV_SERVER_PORT`
The `server.port` in `vite.config.js` for the ViteJS development server.
### static_url_prefix
- **Type**: `str`
- **Default**: `""`
- **Legacy Key**: `DJANGO_VITE_STATIC_URL_PREFIX`
The directory prefix for static files built by ViteJS.
- Use it if you want to avoid conflicts with other static files in your project.
- It's used in both dev mode and production mode.
- For dev mode, you also need to add this prefix inside vite config's `base`.
- For production mode, you may need to add this to vite config's `build.outDir`.
Example:
```python
# settings.py
DJANGO_VITE_STATIC_URL_PREFIX = 'bundler'
STATICFILES_DIRS = (('bundler', '/srv/app/bundler/dist'),)
```
```javascript
// vite.config.js
export default defineConfig({
base: '/static/bundler/',
...
})
```
### manifest_path
- **Type**: `str | Path`
- **Default**: `Path(settings.STATIC_ROOT) / static_url_prefix / "manifest.json"`
- **Legacy Key**: `DJANGO_VITE_MANIFEST_PATH`
The absolute path, including the filename, to the ViteJS manifest file located in `build.outDir`.
### legacy_polyfills_motif
- **Type**: `str`
- **Default**: `"legacy-polyfills"`
- **Legacy Key**: `DJANGO_VITE_LEGACY_POLYFILLS_MOTIF`
The motif used to identify assets for polyfills in the `manifest.json`. This is only applicable if you are using [@vitejs/plugin-legacy](https://github.com/vitejs/vite/tree/main/packages/plugin-legacy).
### ws_client_url
- **Type**: `str`
- **Default**: `"@vite/client"`
- **Legacy Key**: `DJANGO_VITE_WS_CLIENT_URL`
The path to the HMR (Hot Module Replacement) client used in the `vite_hmr_client` tag.
### react_refresh_url
- **Type**: `str`
- **Default**: `"@react-refresh""`
- **Legacy Key**: `DJANGO_VITE_REACT_REFRESH_URL`
If you're using React, this will generate the Javascript needed to support React HMR.
## Notes
- In production mode, all generated paths are prefixed with the `STATIC_URL`
setting of Django.
### Whitenoise
If you are serving your static files with whitenoise, by default your files compiled by vite will not be considered immutable and a bad cache-control will be set. To fix this you will need to set a custom test like so:
```python
import re
# http://whitenoise.evans.io/en/stable/django.html#WHITENOISE_IMMUTABLE_FILE_TEST
def immutable_file_test(path, url):
# Match vite (rollup)-generated hashes, à la, `some_file-CSliV9zW.js`
return re.match(r"^.+[.-][0-9a-zA-Z_-]{8,12}\..+$", url)
WHITENOISE_IMMUTABLE_FILE_TEST = immutable_file_test
```
## Examples
For examples of how to setup the project in v3, please see [django-vite-examples](https://github.com/Niicck/django-vite-examples).
For another example that uses the module-level legacy settings, please see this [example project here](https://github.com/MrBin99/django-vite-example).
## Thanks
Thanks to [Evan You](https://github.com/yyx990803) for the ViteJS library.
Raw data
{
"_id": null,
"home_page": "https://github.com/MrBin99/django-vite",
"name": "django-vite",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": null,
"author": "MrBin99",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/7e/14/3924390af33ea0be01f643e7aa83ec147ef65195a1a6a8bedbb07a45fe54/django_vite-3.0.5.tar.gz",
"platform": null,
"description": "# Django Vite\n\n[](https://badge.fury.io/py/django-vite)\n\nIntegration of [ViteJS](https://vitejs.dev/) in a Django project.\n\n- [Installation](#installation)\n - [Django](#django)\n - [ViteJS](#vitejs)\n - [Assets](#assets)\n- [Usage](#usage)\n - [Configuration](#configuration)\n - [Dev Mode](#dev-mode)\n - [Template tags](#template-tags)\n - [Custom attributes](#custom-attributes)\n- [Vite Legacy Plugin](#vite-legacy-plugin)\n- [Multi-app configuration](#multi-app-configuration)\n- [Configuration Variables](#configuration-variables)\n - [dev\\_mode](#dev_mode)\n - [dev\\_server\\_protocol](#dev_server_protocol)\n - [dev\\_server\\_host](#dev_server_host)\n - [dev\\_server\\_port](#dev_server_port)\n - [static\\_url\\_prefix](#static_url_prefix)\n - [manifest\\_path](#manifest_path)\n - [legacy\\_polyfills\\_motif](#legacy_polyfills_motif)\n - [ws\\_client\\_url](#ws_client_url)\n - [react\\_refresh\\_url](#react_refresh_url)\n- [Notes](#notes)\n - [Whitenoise](#whitenoise)\n- [Examples](#examples)\n- [Thanks](#thanks)\n\n\n## Installation\n\n### Django\n\n```\npip install django-vite\n```\n\nAdd `django_vite` to your `INSTALLED_APPS` in your `settings.py`\n(before your apps that are using it).\n\n```python\nINSTALLED_APPS = [\n ...\n 'django_vite',\n ...\n]\n```\n\n### ViteJS\n\nFollow instructions on [https://vitejs.dev/guide/](https://vitejs.dev/guide/).\nAnd mostly the SSR part.\n\nThen in your ViteJS config file :\n\n- Set the `base` options the same as your `STATIC_URL` Django setting.\n- Set the `build.outDir` path to where you want the assets to compiled.\n- Set the `build.manifest` options to `manifest.json`.\n- As you are in SSR and not in SPA, you don't have an `index.html` that\n ViteJS can use to determine which files to compile. You need to tell it\n directly in `build.rollupOptions.input`.\n\n```javascript\nexport default defineConfig({\n ...\n base: \"/static/\",\n build: {\n ...\n manifest: \"manifest.json\",\n outDir: resolve(\"./assets\"),\n rollupOptions: {\n input: {\n <unique key>: '<path to your asset>'\n }\n }\n }\n})\n```\n\n### Assets\n\nAs recommended on Vite's [backend integration guide](https://vitejs.dev/guide/backend-integration.html), your assets should include the modulepreload polyfill.\n\n```javascript\n// Add this at the beginning of your app entry.\nimport 'vite/modulepreload-polyfill';\n```\n\n## Usage\n\n### Configuration\n\nDefine a default `DJANGO_VITE` configuration in your `settings.py`.\n\n```python\nDJANGO_VITE = {\n \"default\": {\n \"dev_mode\": True\n }\n}\n```\n\nOr if you prefer to use the legacy module-level settings, you can use:\n\n```python\nDJANGO_VITE_DEV_MODE = True\n```\n\nBe sure that the `build.outDir` from `vite.config.js` is included in `STATICFILES_DIRS`.\n\n```python\nSTATICFILES_DIRS = [\n BASE_DIR / \"assets\"\n]\n```\n\n### Dev Mode\n\nThe `dev_mode`/`DJANGO_VITE_DEV_MODE` boolean defines if you want to include assets in development mode or production mode.\n- In development mode, assets are included as modules using the ViteJS\n webserver. This will enable HMR for your assets.\n- In production mode, assets are included as standard assets\n (no ViteJS webserver and HMR) like default Django static files.\n This means that your assets must be compiled with ViteJS before.\n- This setting may be set as the same value as your `DEBUG` setting in\n Django. But you can do what is good for your needs.\n\n### Template tags\n\nInclude this in your base HTML template file.\n\n```\n{% load django_vite %}\n```\n\nThen in your `<head>` element add this :\n\n```\n{% vite_hmr_client %}\n```\n\n- This will add a `<script>` tag to include the ViteJS HMR client.\n- This tag will include this script only if `DJANGO_VITE_DEV_MODE` is true,\n otherwise this will do nothing.\n\nThen add this tag (in your `<head>` element too) to load your scripts :\n\n```\n{% vite_asset '<path to your asset>' %}\n```\n\nThis will add a `<script>` tag including your JS/TS script :\n\n- In development and production, all scripts are included as modules (`[type=module]`).\n- You can pass a second argument to this tag to overrides attributes\n passed to the script tag.\n- This tag only accept JS/TS, for other type of assets, they must be\n included in the script itself using `import` statements.\n- In production mode, the library will read the `manifest.json` file\n generated by ViteJS and import all CSS files dependent of this script\n (before importing the script).\n- You can add as many of this tag as you want, for each input you specify\n in your ViteJS configuration file.\n- The path must be relative to your `root` key inside your ViteJS config file.\n- The path must be a key inside your manifest file `manifest.json` file\n generated by ViteJS.\n- In general, this path does not require a `/` at the beginning\n (follow your `manifest.json` file).\n\n```\n{% vite_asset_url '<path to your asset>' %}\n```\n\nThis will generate only the URL to an asset with no tag surrounding it.\n**Warning, this does not generate URLs for dependant assets of this one\nlike the previous tag.**\n\n```\n{% vite_react_refresh %}\n```\nIf you're using React, this will generate the Javascript `<script/>` needed to support React HMR.\n\n```\n{% vite_react_refresh nonce=\"{{ request.csp_nonce }}\" %}\n```\n\nAny kwargs passed to vite_react_refresh will be added to its generated `<script/>` tag. For example, if your site is configured with a Content Security Policy using [django-csp](https://github.com/mozilla/django-csp) you'll want to add this value for `nonce`.\n\n### Custom attributes\n\nBy default, all script tags are generated with a `type=\"module\"` and `crossorigin=\"\"` attributes just like ViteJS do by default if you are building a single-page app.\nYou can override this behavior by adding or overriding this attributes like so :\n\n```jinja-html\n{% vite_asset '<path to your asset>' foo=\"bar\" hello=\"world\" data_turbo_track=\"reload\" %}\n```\n\nThis line will add `foo=\"bar\"`, `hello=\"world\"`, and `data-turbo-track=\"reload\"` attributes.\n\nYou can also use context variables to fill attributes values :\n\n```\n{% vite_asset '<path to your asset>' foo=request.GET.bar %}\n```\n\nIf you want to overrides default attributes just add them like new attributes :\n\n```\n{% vite_asset '<path to your asset>' crossorigin=\"anonymous\" %}\n```\n\nAlthough it's recommended to keep the default `type=\"module\"` attribute as ViteJS build scripts as ES6 modules.\n\n## Vite Legacy Plugin\n\nIf you want to consider legacy browsers that don't support ES6 modules loading\nyou may use [@vitejs/plugin-legacy](https://github.com/vitejs/vite/tree/main/packages/plugin-legacy).\nDjango Vite supports this plugin. You must add stuff in complement of other script imports in the `<head>` tag.\n\nJust before your `<body>` closing tag add this :\n\n```\n{% vite_legacy_polyfills %}\n```\n\nThis tag will do nothing in development, but in production it will loads the polyfills\ngenerated by ViteJS.\n\nAnd so next to this tag you need to add another import to all the scripts you have\nin the head but the 'legacy' version generated by ViteJS like so :\n\n```\n{% vite_legacy_asset '<path to your asset>' %}\n```\n\nLike the previous tag, this will do nothing in development but in production,\nDjango Vite will add a script tag with a `nomodule` attribute for legacy browsers.\nThe path to your asset must contain de pattern `-legacy` in the file name (ex : `main-legacy.js`).\n\nThis tag accepts overriding and adding custom attributes like the default `vite_asset` tag.\n\n## Multi-app configuration\n\nIf you would like to use django-vite with multiple vite configurations you can specify them in your settings.\n\n```python\nDJANGO_VITE = {\n \"default\": {\n \"dev_mode\": True,\n },\n \"external_app_1\": {\n ...\n },\n \"external_app_2\": {\n ...\n }\n}\n```\n\nSpecify the app in each django-tag tag that you use in your templates. If no app is provided, it will default to using the \"default\" app.\n\n```html\n{% vite_asset '<path to your asset>' %}\n{% vite_asset '<path to another asset>' app=\"external_app_1\" %}\n{% vite_asset '<path to a third asset>' app=\"external_app_2\" %}\n```\n\nYou can see an example project [here](https://github.com/Niicck/django-vite-multi-app-example).\n\n## Configuration Variables\n\nYou can redefine these values for each app config in `DJANGO_VITE` in `settings.py`.\n\n### dev_mode\n- **Type**: `bool`\n- **Default**: `False`\n- **Legacy Key**: `DJANGO_VITE_DEV_MODE`\n\nIndicates whether to serve assets via the ViteJS development server or from compiled production assets.\n\nRead more: [Dev Mode](#dev-mode)\n\n### dev_server_protocol\n- **Type**: `str`\n- **Default**: `\"http\"`\n- **Legacy Key**: `DJANGO_VITE_DEV_SERVER_PROTOCOL`\n\nThe protocol used by the ViteJS webserver.\n\n### dev_server_host\n- **Type**: `str`\n- **Default**: `\"localhost\"`\n- **Legacy Key**: `DJANGO_VITE_DEV_SERVER_HOST`\n\nThe `server.host` in `vite.config.js` for the ViteJS development server.\n\n### dev_server_port\n- **Type**: `int`\n- **Default**: `5173`\n- **Legacy Key**: `DJANGO_VITE_DEV_SERVER_PORT`\n\nThe `server.port` in `vite.config.js` for the ViteJS development server.\n\n### static_url_prefix\n- **Type**: `str`\n- **Default**: `\"\"`\n- **Legacy Key**: `DJANGO_VITE_STATIC_URL_PREFIX`\n\nThe directory prefix for static files built by ViteJS.\n\n- Use it if you want to avoid conflicts with other static files in your project.\n- It's used in both dev mode and production mode.\n- For dev mode, you also need to add this prefix inside vite config's `base`.\n- For production mode, you may need to add this to vite config's `build.outDir`.\n\nExample:\n\n```python\n# settings.py\nDJANGO_VITE_STATIC_URL_PREFIX = 'bundler'\nSTATICFILES_DIRS = (('bundler', '/srv/app/bundler/dist'),)\n```\n\n```javascript\n// vite.config.js\nexport default defineConfig({\n base: '/static/bundler/',\n ...\n})\n```\n\n### manifest_path\n- **Type**: `str | Path`\n- **Default**: `Path(settings.STATIC_ROOT) / static_url_prefix / \"manifest.json\"`\n- **Legacy Key**: `DJANGO_VITE_MANIFEST_PATH`\n\nThe absolute path, including the filename, to the ViteJS manifest file located in `build.outDir`.\n\n### legacy_polyfills_motif\n- **Type**: `str`\n- **Default**: `\"legacy-polyfills\"`\n- **Legacy Key**: `DJANGO_VITE_LEGACY_POLYFILLS_MOTIF`\n\nThe motif used to identify assets for polyfills in the `manifest.json`. This is only applicable if you are using [@vitejs/plugin-legacy](https://github.com/vitejs/vite/tree/main/packages/plugin-legacy).\n\n### ws_client_url\n- **Type**: `str`\n- **Default**: `\"@vite/client\"`\n- **Legacy Key**: `DJANGO_VITE_WS_CLIENT_URL`\n\nThe path to the HMR (Hot Module Replacement) client used in the `vite_hmr_client` tag.\n\n### react_refresh_url\n- **Type**: `str`\n- **Default**: `\"@react-refresh\"\"`\n- **Legacy Key**: `DJANGO_VITE_REACT_REFRESH_URL`\n\nIf you're using React, this will generate the Javascript needed to support React HMR.\n\n## Notes\n\n- In production mode, all generated paths are prefixed with the `STATIC_URL`\n setting of Django.\n\n### Whitenoise\n\nIf you are serving your static files with whitenoise, by default your files compiled by vite will not be considered immutable and a bad cache-control will be set. To fix this you will need to set a custom test like so:\n\n```python\nimport re\n\n# http://whitenoise.evans.io/en/stable/django.html#WHITENOISE_IMMUTABLE_FILE_TEST\n\ndef immutable_file_test(path, url):\n # Match vite (rollup)-generated hashes, \u00e0 la, `some_file-CSliV9zW.js`\n return re.match(r\"^.+[.-][0-9a-zA-Z_-]{8,12}\\..+$\", url)\n\n\nWHITENOISE_IMMUTABLE_FILE_TEST = immutable_file_test\n```\n\n## Examples\n\nFor examples of how to setup the project in v3, please see [django-vite-examples](https://github.com/Niicck/django-vite-examples).\n\nFor another example that uses the module-level legacy settings, please see this [example project here](https://github.com/MrBin99/django-vite-example).\n\n## Thanks\n\nThanks to [Evan You](https://github.com/yyx990803) for the ViteJS library.\n",
"bugtrack_url": null,
"license": "Apache License, Version 2.0",
"summary": "Integration of Vite in a Django project.",
"version": "3.0.5",
"project_urls": {
"Homepage": "https://github.com/MrBin99/django-vite"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "5f151ef43856db1636d97bc87861e7e1b8a9aa51b418585fd5e9d0219d834289",
"md5": "db4ca47c0108e5b7c43fff3faa252a03",
"sha256": "049b74f38c999cbfcf0e2c21b254c2e059bb97bfd7e4049caf2d0f9fba0b482f"
},
"downloads": -1,
"filename": "django_vite-3.0.5-py3-none-any.whl",
"has_sig": false,
"md5_digest": "db4ca47c0108e5b7c43fff3faa252a03",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 19008,
"upload_time": "2024-09-16T13:42:17",
"upload_time_iso_8601": "2024-09-16T13:42:17.653810Z",
"url": "https://files.pythonhosted.org/packages/5f/15/1ef43856db1636d97bc87861e7e1b8a9aa51b418585fd5e9d0219d834289/django_vite-3.0.5-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e143924390af33ea0be01f643e7aa83ec147ef65195a1a6a8bedbb07a45fe54",
"md5": "88bca92554b633c967d61655e79f2de2",
"sha256": "431c1212e7627adc20666d150578f1a8983f043e90f3905778fb3c5c0ffe6963"
},
"downloads": -1,
"filename": "django_vite-3.0.5.tar.gz",
"has_sig": false,
"md5_digest": "88bca92554b633c967d61655e79f2de2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21383,
"upload_time": "2024-09-16T13:42:19",
"upload_time_iso_8601": "2024-09-16T13:42:19.074506Z",
"url": "https://files.pythonhosted.org/packages/7e/14/3924390af33ea0be01f643e7aa83ec147ef65195a1a6a8bedbb07a45fe54/django_vite-3.0.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-16 13:42:19",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "MrBin99",
"github_project": "django-vite",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "django-vite"
}