Mod vite compilation
continuous-integration/drone/push Build is passing Details

This commit is contained in:
philipp lang 2024-10-03 12:57:11 +02:00
parent 9fac4cf86c
commit 709ca3edf9
3 changed files with 17 additions and 4 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
.idea
node_modules
build/
/assets/

View File

@ -0,0 +1,11 @@
{% if devServerIsRunning %}
<script type="module" src="http://localhost:3000/@vite/client"></script>
<script type="module" src="http://localhost:3000/resources/js/app.js"></script>
{% else %}
{% for css in cssPaths %}
<link rel="stylesheet" href="{{ ('assets/public/' ~ css)|theme }}">
{% endfor %}
{% put scripts %}
<script type="module" src="{{ ('assets/public/' ~ jsPath)|theme }}"></script>
{% endput %}
{% endif %}

View File

@ -12,12 +12,13 @@ export default ({ command }) => {
base:
command === "serve"
? "/themes/vite-tailwind/"
: "/themes/vite-tailwind/build/",
: "/themes/vite-tailwind/assets/public/",
/*base: `${ASSET_URL}`,*/
publicDir: "fake_dir_so_nothing_gets_copied",
publicDir: "resources/public",
build: {
manifest: true,
outDir: "build",
manifest: "manifest.json",
outDir: "assets/public",
assetsDir: "",
rollupOptions: {
input: `${VITE_INPUT}`,
},