Skip to content

Commit

Permalink
fix: fixed code security policy and type declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
SonyLeo committed Feb 17, 2025
1 parent 600c361 commit 44a02c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/toolbars/codesandbox/src/Main.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export default {
},
props: {
options: {
type: String,
default: ''
type: Object,
default: () => ({})
}
},
setup() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default () => {
export default defineConfig({
server: {
allowedHosts: true
allowedHosts: ['localhost', '.csb.app']
},
resolve: {
alias: {
Expand Down

0 comments on commit 44a02c1

Please sign in to comment.