This commit is contained in:
VanyaAlekseev 2024-01-06 19:23:14 +04:00
parent c91124ead4
commit 95d9ee535a
5 changed files with 28 additions and 3332 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,17 +1,17 @@
{ {
"hash": "bd29738a", "hash": "408e6254",
"browserHash": "f7758281", "browserHash": "2517c23c",
"optimized": { "optimized": {
"@popperjs/core": { "@popperjs/core": {
"src": "../../@popperjs/core/lib/index.js", "src": "../../@popperjs/core/lib/index.js",
"file": "@popperjs_core.js", "file": "@popperjs_core.js",
"fileHash": "f583d0b2", "fileHash": "6ed6b4a8",
"needsInterop": false "needsInterop": false
}, },
"bootstrap": { "bootstrap": {
"src": "../../bootstrap/dist/js/bootstrap.esm.js", "src": "../../bootstrap/dist/js/bootstrap.esm.js",
"file": "bootstrap.js", "file": "bootstrap.js",
"fileHash": "b8bf1b22", "fileHash": "22f1a840",
"needsInterop": false "needsInterop": false
} }
}, },

3322
IP/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -46,10 +46,10 @@
<th scope="col" class="w-25">Товар</th> <th scope="col" class="w-25">Товар</th>
<th scope="col" class="w-25">Цена</th> <th scope="col" class="w-25">Цена</th>
<th scope="col" class="w-25">Количество</th> <th scope="col" class="w-25">Количество</th>
<th scope="col" class="w-25">Материалы</th>
<th scope="col" class="w-25">Сумма</th> <th scope="col" class="w-25">Сумма</th>
<th scope="col"></th> <th scope="col"></th>
<th scope="col"></th> <th scope="col"></th>
<th scope="col"></th>
</thead> </thead>
<tbody></tbody> <tbody></tbody>
</table> </table>

View File

@ -1,14 +1,21 @@
import { resolve } from 'path' /* eslint-disable linebreak-style */
import { defineConfig } from 'vite' /* eslint-disable eol-last */
/* eslint-disable linebreak-style */
import { resolve } from "path";
// eslint-disable-next-line import/no-extraneous-dependencies
import { defineConfig } from "vite";
export default defineConfig({ export default defineConfig({
build: { build: {
sourcemap: true,
emptyOutDir: true,
rollupOptions: { rollupOptions: {
input: { input: {
main: resolve(__dirname, 'index.html'), main: resolve(__dirname, "index.html"),
page2: resolve(__dirname, 'page2.html'), page2: resolve(__dirname, "page2.html"),
page3: resolve(__dirname, 'page3.html'), page3: resolve(__dirname, "page3.html"),
page4: resolve(__dirname, "page4.html"),
}, },
}, },
}, },
}) });