Note: This guide applies to the project created by quasar-cli.
First install typescript and ts-loaderpackages in your project.
npm i -D typescript ts-loaderThen modified the quasar.conf.js file in your project:
Note: This guide applies to the project created by quasar-cli.
First install typescript and ts-loaderpackages in your project.
npm i -D typescript ts-loaderThen modified the quasar.conf.js file in your project:
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| name: ipfs | |
| spec: | |
| type: NodePort | |
| ports: | |
| - name: ipfs | |
| port: 8080 | |
| targetPort: 8080 |
| // Construct a table with table[i] as the length of the longest prefix of the substring 0..i | |
| function longestPrefix(str) { | |
| // create a table of size equal to the length of `str` | |
| // table[i] will store the prefix of the longest prefix of the substring str[0..i] | |
| var table = new Array(str.length); | |
| var maxPrefix = 0; | |
| // the longest prefix of the substring str[0] has length | |
| table[0] = 0; |