lab3
This commit is contained in:
parent
c91124ead4
commit
95d9ee535a
File diff suppressed because one or more lines are too long
8
IP/node_modules/.vite/deps/_metadata.json
generated
vendored
8
IP/node_modules/.vite/deps/_metadata.json
generated
vendored
@ -1,17 +1,17 @@
|
||||
{
|
||||
"hash": "bd29738a",
|
||||
"browserHash": "f7758281",
|
||||
"hash": "408e6254",
|
||||
"browserHash": "2517c23c",
|
||||
"optimized": {
|
||||
"@popperjs/core": {
|
||||
"src": "../../@popperjs/core/lib/index.js",
|
||||
"file": "@popperjs_core.js",
|
||||
"fileHash": "f583d0b2",
|
||||
"fileHash": "6ed6b4a8",
|
||||
"needsInterop": false
|
||||
},
|
||||
"bootstrap": {
|
||||
"src": "../../bootstrap/dist/js/bootstrap.esm.js",
|
||||
"file": "bootstrap.js",
|
||||
"fileHash": "b8bf1b22",
|
||||
"fileHash": "22f1a840",
|
||||
"needsInterop": false
|
||||
}
|
||||
},
|
||||
|
3322
IP/package-lock.json
generated
3322
IP/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -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"></th>
|
||||
<th scope="col"></th>
|
||||
<th scope="col"></th>
|
||||
</thead>
|
||||
<tbody></tbody>
|
||||
</table>
|
||||
|
@ -1,14 +1,21 @@
|
||||
import { resolve } from 'path'
|
||||
import { defineConfig } from 'vite'
|
||||
/* eslint-disable linebreak-style */
|
||||
/* 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({
|
||||
build: {
|
||||
sourcemap: true,
|
||||
emptyOutDir: true,
|
||||
rollupOptions: {
|
||||
input: {
|
||||
main: resolve(__dirname, 'index.html'),
|
||||
page2: resolve(__dirname, 'page2.html'),
|
||||
page3: resolve(__dirname, 'page3.html'),
|
||||
main: resolve(__dirname, "index.html"),
|
||||
page2: resolve(__dirname, "page2.html"),
|
||||
page3: resolve(__dirname, "page3.html"),
|
||||
page4: resolve(__dirname, "page4.html"),
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
});
|
Loading…
Reference in New Issue
Block a user