Implemented bottom toolbar for adding and calculating, added remove button for Price Cards
21 lines
493 B
TypeScript
21 lines
493 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2024-11-01',
|
|
devtools: { enabled: false },
|
|
future: {
|
|
compatibilityVersion: 4,
|
|
},
|
|
|
|
modules: [
|
|
'@nuxt/icon',
|
|
],
|
|
|
|
css : [
|
|
'./app/assets/styles/general.css',
|
|
'./app/assets/styles/header.css',
|
|
'./app/assets/styles/button.css',
|
|
'./app/assets/styles/priceCard.css',
|
|
'./app/assets/styles/formInput.css',
|
|
'./app/assets/styles/toolbar.css',
|
|
]
|
|
})
|