Skip to content

Commit

Permalink
fix: Proper css for all entrypoints
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <jus@bitgrid.net>
  • Loading branch information
juliushaertl committed Jun 27, 2024
1 parent 6729bf7 commit 6533936
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/file-actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { spawnDialog } from '@nextcloud/dialogs'
// eslint-disable-next-line import/no-unresolved
import tablesIcon from '@mdi/svg/svg/table-large.svg?raw'

import '@nextcloud/dialogs/style.css'

const validMimeTypes = [
'text/csv',
'text/html',
Expand Down
3 changes: 2 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ const config = createAppConfig({
files: path.join(__dirname, 'src', 'file-actions.js'),
main: path.join(__dirname, 'src', 'main.js'),
}, {
inlineCSS: true,
inlineCSS: false,
config: {
build: {
cssCodeSplit: true,
rollupOptions: {
output: {
manualChunks: (id) => {
Expand Down

0 comments on commit 6533936

Please sign in to comment.